//3.2 - Nine Tasks of Hercules - Dirk Henkemans and Mark Lee //Prima Publishing #include using namespace std; //introduces namespace std int main( void ) { //the variable that stores how many tasks you have completed. int taskNumber = 0; while(taskNumber < 9) //until taskNumber >= 9 { taskNumber++; cout<<"Hercules has now completed " << taskNumber << " tasks." << endl; } return 0; }